refactor: remove deprecated commands, rewrite docs for apply-first CLI#68
Merged
Conversation
- Delete cmd/up.go, cmd/create.go, cmd/render.go (replaced by apply) - Extract upLocal/upLocalOpts/Version/DefaultAgentConfig to cmd/executor.go - Move loadProviderProfiles/loadGatewayProfile to cmd/resolve.go - Delete resolveAgentConfig (replaced by resolveHarness) - Remove up/create/render command registration from main.go - Keep teardown/status as hidden deprecated aliases (get/delete not yet shipped) - Rewrite SPEC.md: apply as primary command, full flag reference, multi-doc YAML section, deprecated aliases table, corrected env var table - Rewrite README.md: punchy opener, hero code block, kill 50-line shell dumps, concise Quick Start, structured Reference section - Net: -798 lines deleted, -305 lines net reduction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Completes the kubectl-style CLI transition. Removes the old
up,create, andrendercommands entirely (not just hidden -- gone). Rewrites SPEC.md and README.md for the newharness applyworld.Code changes:
cmd/up.go,cmd/create.go,cmd/render.goand their testsupLocal,upLocalOpts,Version,DefaultAgentConfig) tocmd/executor.goloadProviderProfiles,loadGatewayProfiletocmd/resolve.goresolveAgentConfig(replaced byresolveHarness)teardownandstatusas hidden deprecated aliases untildelete/getshipDoc changes:
applyas primary command, full flag reference, multi-doc YAML section, deprecated aliases table, corrected env var tableNet: -798 lines deleted, -305 lines net reduction.
Test plan
go build ./...passesgo test ./...passes (all packages)go vet ./...passesharness apply --dry-runworksharness apply -o yamlworksharness upis gone (command not found)harness teardownstill works (kept as alias)